home *** CD-ROM | disk | FTP | other *** search
/ Colson Caster Selection Guide 3 / Colson Caster Selection Guide 3.0.iso / colsoncd.dxr / 00001Series_132_delitem.ls < prev    next >
Encoding:
Text File  |  2000-01-11  |  676 b   |  22 lines

  1. on mouseUp
  2.   global gtemp
  3.   puppetSound("mainsnd")
  4.   if (the number of chars in line gtemp of field "orderfield" < 1) or (gtemp = 0) then
  5.     alert("please select model number")
  6.     abort()
  7.   end if
  8.   if line gtemp of field "orderfield" <> EMPTY then
  9.     delete line gtemp of field "masterfield"
  10.     delete line gtemp of field "orderfield"
  11.     put EMPTY into field "detail"
  12.     set the puppet of sprite 16 to 1
  13.     set the locH of sprite 16 to -200
  14.     set the locV of sprite 16 to 0
  15.     set the castNum of sprite 16 to cast "dummy1"
  16.     set the locH of sprite 16 to 300
  17.     set the locV of sprite 16 to 345
  18.     set the puppet of sprite 16 to 0
  19.     updateStage()
  20.   end if
  21. end
  22.